home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19941031-19941221 / 000282_news@columbia.edu_Sun Nov 27 02:08:20 1994.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Received: from apakabar.cc.columbia.edu by watsun.cc.columbia.edu with SMTP id AA19475
  2.   (5.65c+CU/IDA-1.4.4/HLK for <kermit.misc@watsun.cc.columbia.edu>); Sat, 26 Nov 1994 21:08:23 -0500
  3. Received: by apakabar.cc.columbia.edu id AA21017
  4.   (5.65c+CU/IDA-1.4.4/HLK for kermit.misc@watsun); Sat, 26 Nov 1994 21:08:22 -0500
  5. Path: news.columbia.edu!watsun.cc.columbia.edu!jrd
  6. From: jrd@watsun.cc.columbia.edu (Joe R. Doupnik)
  7. Newsgroups: comp.protocols.kermit.misc,indirect.help.slip.ppp
  8. Subject: Re: [?] PPP and MS-DOS Kermit 3.13
  9. Date: 27 Nov 1994 02:08:20 GMT
  10. Organization: Columbia University
  11. Lines: 55
  12. Message-Id: <3b8pmk$kgn@apakabar.cc.columbia.edu>
  13. References: <Czw5Ds.HDH@indirect.com>
  14. Nntp-Posting-Host: watsun.cc.columbia.edu
  15. Apparently-To: kermit.misc@watsun.cc.columbia.edu
  16.  
  17. In article <Czw5Ds.HDH@indirect.com>, Jim Monty <monty@indirect.com> wrote:
  18. >I am able load the PPP packet driver from Merit Network, Inc.
  19. >(etherppp.exe, version 1.9.37 beta) and successfully make a connection to
  20. >my Internet service provider.  Once connected, I start MS-DOS Kermit 
  21. >3.13, patch level 17, and do this:
  22. >
  23. >MS-Kermit>set port tcp/ip 165.247.1.10
  24. >MS-Kermit>connect
  25. > Resolving address of host 165.247.1.10 ...
  26. >
  27. > Unable to contact the host.
  28. > The host may be down or a gateway may be needed.
  29. >?Cannot start the connection.
  30. >MS-Kermit>set port tcp/ip indirect.com
  31. >MS-Kermit>connect
  32. > Resolving address of host indirect.com ...
  33. >  trying name indirect.com
  34. >  Cannot read name server 165.247.1.3
  35. > Cannot resolve address of host indirect.com
  36. >?Cannot start the connection
  37. >MS-Kermit>
  38. >
  39. >I _can_ successfully connect using the SLIP driver SLIP8250.  Is it not 
  40. >possible to use PPP instead of SLIP with MS-DOS Kermit?  If it is 
  41. >possible, how can I determine what is causing the problem?
  42. >
  43. >Any suggestions or assistance will be greatly appreciated.
  44. ------------------
  45.     PPP is, um, a Point to Point protocol. Only two stations on such
  46. links, this one and the other one. Thus the only way off the wire is 
  47. through the "other one." This in turn implies two important things:
  48.     1. ARP doesn't work or even apply because that's a physical layer
  49. broadcast to obtain the physical address of other stations on the wire
  50. (having the same IP "network" number but different IP "host" numbers).
  51.     2. All, and that means ALL, stations are reached via the "other
  52. one", and hence the "other one" is the IP Gateway for all outbound traffic.
  53.     2 corollary. The IP network is confined to two stations, us and the
  54. "other end." Thus the wire can hold 165.247.1.us and 165.247.1.them and that's
  55. it. All other stations must be on a different IP network number and reached 
  56. via the "other end" as a gateway. This includes name servers etc.
  57.     The "other end" must be prepared as an IP router, or else you will
  58. need to log into the other end and create a Telnet session there which goes 
  59. onward.
  60.     I'm happy to hear that you got the Merit PPP driver to work at all.
  61. It hangs my machine during its startup every time I'm tried it, well before
  62. Kermit is started. I have no idea of what's inside that serial driver or
  63. how it really represents itself to programs (it hangs my machine...).
  64.     So, I suggest you talk with your service provider about IP numbers
  65. of your link and tell Kermit about the gateway IP number and proper subnet
  66. mask. Nameservers can be anywhere in the world.
  67.     Joe D.
  68.  
  69.  
  70.  
  71.